1 /*
2 * Created on 2004/12/07
3 */
4 package org.apache.velocity.tools.generic.directive;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9 /***
10 * @author skawai
11 */
12 public class AllTests {
13
14 public static Test suite() {
15 TestSuite suite = new TestSuite(
16 "Test for org.apache.velocity.tools.generic.directive");
17 //$JUnit-BEGIN$
18 suite.addTestSuite(IfnullTest.class);
19 suite.addTestSuite(IfnotnullTest.class);
20 //$JUnit-END$
21 return suite;
22 }
23 }